home *** CD-ROM | disk | FTP | other *** search
- /*
- ### destroy an auto window ###
- */
-
- #include <suntool/sunview.h>
- #include <suntool/textsw.h>
- #include <suntool/panel.h>
-
- void destroy_auto_windows()
- {
-
- extern short auto_panel_show;
- extern Frame auto_frame;
- extern Panel auto_panel;
- extern Textsw auto_textsw;
-
- if(auto_panel_show){
- window_destroy(auto_textsw);
- window_destroy(auto_panel);
- window_destroy(auto_frame);
- auto_panel_show=0;
- }
-
- }
-
-